home *** CD-ROM | disk | FTP | other *** search
/ JCSM Shareware Collection 1996 September / JCSM Shareware Collection (JCS Distribution) (September 1996).ISO / prgtools / czlis110.zip / WHATSNEW.DOC < prev   
Text File  |  1994-10-29  |  3KB  |  49 lines

  1. Version 1.10, October 29, 1994:
  2. -------------------------------
  3. o  Increased element size from a maximum of 64 characters to 76. This
  4.    allows to display the listbox controls over the entire screen
  5.    (80 columns). The memory usage per list element increases; therefore,
  6.    by 12 bytes. So, you should keep this in mind when calculating the total
  7.    memory usage for XMS, EMS, or virtual memory (examples are shown in the
  8.    DEMO source code). Note: Always use a border with all controls.
  9. o  If you force CzarList to use virtual memory with CzarList.Mode = -3, 
  10.    CzarList will now use filenumbers starting with #10. This should prevent 
  11.    error #55 (File Already Open). If you need more than 9 files open for 
  12.    your own programs, you can tell CzarList with the CzSetStartFileNumber 
  13.    function what starting filenumber to use. Example, 
  14.    CALL CzSetStartFileNumber(15) would force CzarList to use filenumber
  15.    15 for the first control's virtual memory disk file. Declare the function
  16.    as follows: DECLARE SUB CzSetStartFileNumber (FileNumber%)
  17. o  Included new file CZLIST.DOC with detailed description of each control.
  18. o  Several properties could not be set during run-time. Fixed.
  19. o  Would ignore setting the ListIndex property. Fixed.
  20. o  Would not allow to change the Height property during run-time. Fixed.
  21. o  "Bad Record Number" error would come up on some systems. Fixed.
  22. o  The .Text property would not return a string value. Fixed.
  23. o  When removing an item with the .REMOVEITEM method, the controls would
  24.    jump back to the beginning of the listbox. Fixed.
  25. o  The ADDITEM method would not allow to set the position index. For example,
  26.    CzarList.ADDITEM " Test String", 10
  27.    added the item at the end of the listbox instead of putting the string
  28.    at position 10. Fixed.
  29. o  Users should now use the CzarList.REFRESH method to update the listbox
  30.    on the screen and form after using the ADDITEM method or everytime
  31.    the listbox is not updated directly.
  32. o  The CzTagAll and CzUntagAll functions did not work correctly when the 
  33.    box height was greater than the number of items in the listbox. It added 
  34.    several items at the end of the listbox. Fixed.
  35. o  ListCount property did not return correct value. Fixed.
  36. o  Note: In order for CzarList to use any Extended memory (XMS), you need
  37.    to load an extended memory driver such as HIMEM.SYS. In order for 
  38.    CzarList to use any Expanded memory (EMS), you need to load an 
  39.    expanded memory driver such as EMM386 (on 80386 computers) etc.
  40. o  Special Note: Please read CZLIST.DOC for further details on initializing
  41.    all controls with the necessary Max property in your FORM_LOAD functions.
  42.  
  43.  
  44. Version 1.01, July 10, 1994:
  45. ----------------------------
  46. o  Reduced size of CZLIST.QLB from 168 KBytes to 58 KBytes. This reduces
  47.    the memory requirements within the VBDOS programming environment and
  48.    therefore frees more memory for your own programs.
  49.